home *** CD-ROM | disk | FTP | other *** search
-
- #ifndef __MCLIST_H
- #define __MCLIST_H
-
- #define LCLIST_ID 0x0108
-
- class LCList : public LList {
- public:
- LCList (WORD MaxSize = MAXWORD);
- virtual WORD GetCurrentOffset (void);
- virtual MObject * FirstThat (CondFuncType, void * );
- virtual void ForEach (IterFuncType, void * );
- virtual void InsertAfter (MObject * elem);
- virtual void InsertBefore (MObject * elem);
- virtual inline classType isA (void) {return (LCLIST_ID);};
- virtual MObject * LastThat (CondFuncType, void * );
- virtual void printOn (ostream& os);
- ~LCList (void);
- };
-
- #endif
-